home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / pcgames / EMERGY / BC5 / EXAMPLES / SERIES / INITREE / readme.txt
Text File  |  1997-03-25  |  2KB  |  41 lines

  1. INITREE - Based on Gen32
  2.  
  3. THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  4. ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  5. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  6. PARTICULAR PURPOSE.
  7.  
  8. Copyright (C) 1993-1995  Microsoft Corporation.  All Rights Reserved.
  9.  
  10. PURPOSE:
  11.     Show how to create and fill a TreeView control with a
  12.     hierarchical list of items (in this example, the INI
  13.     files in the Windows directory are used).
  14.     Show how to use the ImageList in conjunction with the
  15.     TreeView control.
  16.     Show how to use the FindFirstFile and FindNextFile APIs
  17.     to search a directory.
  18.  
  19. USES:
  20.     Based on Gen32
  21.  
  22. COMMENTS:
  23.     This is a 32-bit only sample.
  24.  
  25. MODULE MAP:
  26.     Dispatch         - Message dispatching routines
  27.     WinMain          - Calls initialization functions and processes 
  28.                        the message loop
  29.     Generic          - Implements the windows procedure for the main 
  30.                        application window
  31.     Init             - Performs application and instance specific 
  32.                        initialization
  33.     About            - Defines a standard about dialog box.
  34.     Misc             - Defines the applications specific commands 
  35.                        not related to a specific module.
  36.     INI_FillTreeView - Entry point function to fill TreeView Control.
  37.     FillIniKeys      - Build a list of sections for each INI file.
  38.     FillKeyItems     - Build a list of entries for each section.
  39.     CreateImageList  - Creates an Image List.
  40.     CreateTreeView   - Create a TreeView control.
  41.